home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !tex / TeXsource / commontex / h / hash < prev    next >
Encoding:
Text File  |  1988-04-08  |  590 b   |  30 lines

  1. /*
  2.  *    Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
  3.  *    Copying of this file is granted according to the provisions 
  4.  *    specified in the file COPYING which must accompany this file.
  5.  */
  6.  
  7.  
  8. /*
  9.  *        hash.h
  10.  */
  11.  
  12. #define    next(H)                hash[H].hh1.lh
  13. #define    text(H)                hash[H].hh1.rh
  14. #define    font_id_text(H)        text(FONT_ID_BASE + H)
  15.  
  16. #define    hash_is_full        (hash_used == HASH_BASE)
  17.  
  18. global    twoh    hash[];
  19. global    ptr        hash_used;
  20. global    bool    no_new_control_sequence;
  21. global    int        cs_count;
  22.  
  23. ptr        id_lookup();
  24. int        print_cs();
  25. int        sprint_cs();
  26.  
  27. #ifdef    INIT
  28. int        primitive();
  29. #endif
  30.